home *** CD-ROM | disk | FTP | other *** search
- <PUBLIC:COMPONENT>
-
- <PUBLIC:ATTACH EVENT="onmouseover" ONEVENT="rollOn()" />
- <PUBLIC:ATTACH EVENT="onmouseout" ONEVENT="rollOff()" />
-
- <SCRIPT LANGUAGE="JScript">
-
- function rollOn() {
- with (runtimeStyle) {
- cursor = "hand";
- fontWeight = "bolder";
- textDecoration = "underline";
- }
- event.cancelBubble = true;
- }
- function rollOff() {
- with (runtimeStyle) {
- cursor = "auto";
- fontWeight = "normal";
- textDecoration = "none";
- }
- event.cancelBubble = true;
- }
- </SCRIPT>
- </PUBLIC:COMPONENT>
-